home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / pupworld.swf / scripts / DefineButton2_254 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2011-06-09  |  280 b   |  13 lines

  1. on(release){
  2.    if(dogName_txt.text == "")
  3.    {
  4.       Selection.setFocus("dogName_txt");
  5.       nameDogError.gotoAndStop("show");
  6.    }
  7.    else
  8.    {
  9.       Heroes.Tools.setPlayerName(pi.CurseFilter.clean(dogName_txt.text,true));
  10.       _parent.gotoAndStop("game");
  11.    }
  12. }
  13.